home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 1
/
Wayzata's Best of Shareware for PC-Windows - Release 1 - Wayzata Technology (1993).iso
/
mac
/
DOS
/
PROGRAMG
/
FINISH22
/
READ.ME
< prev
next >
Wrap
Text File
|
1992-09-01
|
7KB
|
186 lines
THE FINISHING TOUCH
Professional Software Installer
Version 2.2
September 1, 1992
Developed by ImagiSOFT, Inc.
who is a member of the Association of Shareware Professionals.
For the latest copy of the Finishing Touch, call our home BBS:
Software Creations BBS
33 Lines to Serve You 24 Hours per Day!
(508) 365-2359 2400 baud
(508) 368-4137 2400-14.4K USR
(508) 368-7036 2400-14.4K V.32
This is a fully working shareware copy of THE FINISH TOUCH.
~~~~~~~~~~~~~
To print the documentation use the command:
COPY INSTALL.TXT LPT1:
To print the order form use the command:
COPY ORDER.TXT LPT1:
The Finishing Touch Software Installer consists of the minimum six files:
PACKER.EXE file compression utility
INSTALL.EXE installation utility
INSTALL.FIL sample installation script file
INSTALL.TXT documentation for all of the above
ORDER.TXT order form
READ.ME this file
If these files are missing or altered, the software WILL NOT run!
A seventh file, SAMPLE.PAK should be included with this software to
so people can see first hand how the software installer works with a "real"
application. ALL SEVEN files must be on the floppy disk to see the demo
run or you will get a "Files Missing" message.
Four other, optional files have been added to see a "real" application of
the Finishing Touch Software Installer which we used for our TSA Software.
1.FIL is actually named "INSTALL.FIL" on our software
it is small and asks the question Color Y/N?
2C.FIL if the color is "Yes" then this file is loaded
2B.FIL this file is loaded for LCD & monochrome monitors.
4.FIL this file is loaded only if a fatal disk error occurs.
Modifying INSTALL.FIL and these four files is the "fast start" way to learn
how to use THE FINISHING TOUCH Software Installer. You have in your hands
a fully working shareware evaluation copy. We hope that you will find
THE FINISHING TOUCH is the smallest, most powerful, easiest to use,
software installer with the best file compression available anywhere.
ENJOY!
Michael J. Prestwich,
President,
ImagiSOFT, Inc.
June 10, 1992
Today we implemented two minor changes:
1) DR DOS was displaying the CRC values during the UNPACK command which
caused an annoying scroll on the screen. This problem was corrected.
2) A new user needed a SET.BUFFERS command similar SET.FILES so we added
it. It works exactly the same way as SET.FILES command does; see the
documentation for details.
June 15, 1992
Today we added several new commands:
PROMPT On/Off turns windows on or off for the COPY, DELETE, DISK, and UNPACK
commands. This is easier than "hiding" windows by making them the same color
as the background as explained in the documentation.
PAUSE t
Pause for t hundredths of a second. Nice if you want to "animate" windows.
WINMOVE x y
Moves the current window the new x y position. If you use the command
WINMOVE +1 +1 it will move the current window relative to its current position
one row down and one row across.
BORDER t
t = type 0 = none
1 = single line (default)
2 = double line
WINUPDATE x y c
x position on the screen
y position on the screen
c color value
Use WINUPDATE to display a string inside the current open window. For example:
WINUPDATE +2 +1 79
"This line is displayed in the current"
"window with white letters on a red"
"background. It is relative to the"
"upper left corner by 2 characters across"
"and 1 row down."
Relative Cursor / Window Positions
WINOPEN now supports relative cursor positions. For example, WINOPEN +0 +5 17
will open a new window 5 rows down from the last window open. Relative
positioning also works in the UNPACK, PATH, DRIVE, ASK, COPY, DELETE, WINMOVE,
and WINUPDATE commands.
Relative cursor positioning is especially useful when you are printing the
selected DRIVE and PATH on the screen with the variables ~1 and ~2.
For example:
WINOPEN 0 0 79 ' red centered window
"The directory ~1~2 already exists and contains files!"
"Are you SURE you want to install your software in"
"this directory Y / N?"
ASK +26 +3 ' position cursor on
' the N character
' no matter how the
' window is centered
August 12, 1992
We added a new command:
INPUT s l x y c
This command allows the user to input text strings which you can assign to
the variables ~A through ~Z. Your script can substitute these codes similar
to the ~0, ~1, ~2, and ~3 variables as explained in the documentation.
s = String ID ("A" through "Z", your choice).
l = String length, from 1 to 40.
x, y = Input position on the screen. It is best to use
the + and - here, because the entire input field
must be contained within the current open window.
c = Input color (see the color chart in the documentation).
Example:
WINOPEN 0 0 31 ' open a window centered on the screen
' in color 31 (bright white on blue)
""
"Please enter the following information: "
""
"Name:"
"Address:"
"City, State, Zip:"
""
"License Number:"
""
' input 30 characters in color 15 (bright white on black)
INPUT N 30 +20 +4 15 ' (Name) assign to variable "N"
INPUT A 30 +20 +5 15 ' (Address) assign to variable "A"
INPUT C 30 +20 +6 15 ' (City, State, Zip) assign to variable "C"
' NOTE: the license number is only 15 characters long
INPUT L 15 +20 +8 15 ' (License Number) assign to variable "L"
WINCLOSE ' close the window
' write the results into an
' ASCII file called USER.FIL
FILE ~1~2\USER.FIL
"Name: ~N" ' The text that the user input
"Address: ~A" ' will be substituted for the
"City, State, Zip ~C" ' appropriate variables ~N, ~A,
"" ' ~C, and ~L.
"License Number ~L"